HTMLify
index.html
Views: 365 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <title>Word Guess Game</title> <link rel="stylesheet" href="./style.css"> </head> <body> <!-- partial:index.partial.html --> <div class="wrapper"> <h1>Word Guess</h1> <!-- <h2>Vanilla JavaScript Hangman Game</h2> --> <p>Click on the alphabet below to guess the word, or click hint For Help. </p> </div> <div class="wrapper"> <div id="buttons"> </div> <p id="catagoryName"></p> <div id="hold"> </div> <p id="mylives"></p> <p id="clue">Clue -</p> <canvas id="stickman">This Text will show if the Browser does NOT support HTML5 Canvas tag</canvas> <div class="container"> <button id="hint">Hint</button> <button id="reset">Play again</button> </div> </div> <!-- partial --> <script src="./script.js"></script> </body> </html> |